home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-05-17 | 455 b | 14 lines | [TEXT/ToyS] |
-
- property secondsToWait : 10
- -- Change this value to determine the delay before the startup checks are performed.
-
- tell application "Remember?"
- -- Note that the 'delay' command is a relative new addition to AppleScript
- -- (System 8.0 or later I believe.) This script won't compile under older
- -- system software versions.
- delay secondsToWait
-
- -- this is the Remember? specific command to perform the startup checks.
- perform startup checks
- end tell
-